Tables

A table helps to organize data information into columns and rows.

An HTML5 example of how to create a simple table is shown here:

			<!DOCTTYPE html> 
<!--Example 1: Table.html -->
<html>
<head>
<title> This is a Simple Table example </title>
</head>
<body>
<table border = "2">
<caption>Special characters in HTML5 </caption>
<tr>
<th> Symbol </th><th> Description</th> <th> To avoid rendering </th>
</tr>
<tr>
<td> < </td><td> Less than </td><td> &amp lt </td>
</tr>
<tr>
<td> > </td><td> Greater than </td><td> &amp gt </td>
</tr>
<tr>
<td> & </td><td>ampersand</td><td> & amp </td>
</tr>
<tr>
<td> " </td><td> quot </td><td> & quot </td>
</tr>
<tr>
<td> ' </td><td> apostrophe </td><td> &apos </td>
</tr>
</table>
</body>
</html>
The rendered table example is shown here:


For more details, please contact me here.
Date of last modification: 2020.